// // Copyright (c) 2009 All Right Reserved // // Stephen Toub // stoub@microsoft.com // 2009-01-01 // Contains ... using System; namespace LargoCommon.Midi { /// A cue point name meta event. [Serializable] public sealed class MetaCuePoint : MetaAbstractText { #region Fields /// The meta id for this event. private const byte EventMetaId = 0x7; #endregion #region Constructors /// Initializes a new instance of the MetaCuePoint class. /// The amount of time before this event. /// The text associated with the event. public MetaCuePoint(long deltaTime, string text) : base(deltaTime, EventMetaId, text) { } #endregion } }